Views [dbo].[vSoaGroupSummaryRelationship]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Schema BoundYes
Created9:36:22 PM Wednesday, August 24, 2011
Last Modified9:36:22 PM Wednesday, August 24, 2011
Columns
Name
Cluster Key PK_vSoaGroupSummaryRelationship: GroupIdGroupId
ParentEntityTypeName
ParentEntityId
GroupClassId
Name
Indexes Indexes
NameColumnsUnique
Cluster Key PK_vSoaGroupSummaryRelationship: GroupIdPK_vSoaGroupSummaryRelationshipGroupId
Yes
SQL Script

CREATE VIEW [dbo].[vSoaGroupSummaryRelationship]
WITH SCHEMABINDING
AS
    SELECT  'RELATIONSHIP-' + [n].[ID] AS [GroupId],
            'Party' AS [ParentEntityTypeName],
            [n].[ID] AS [ParentEntityId],
            'RELATIONSHIP' AS [GroupClassId],
            'Relationships' AS [Name]
      FROM  [dbo].[Name] AS [n]


GO
CREATE UNIQUE CLUSTERED INDEX [PK_vSoaGroupSummaryRelationship] ON [dbo].[vSoaGroupSummaryRelationship] ([GroupId]) ON [PRIMARY]
GO
Uses
Used By